An IReadOnlyList<T> containing elements that can be accessed by their name.
Base type: object.
Implemented interfaces:
IReadOnlyList<T>.
The type of element that is contained in the collection,
| Name | Access Modifier | Summary |
|---|---|---|
| Count | public get |
Gets the number of items in the collection. |
| Item[int] | public get |
Gets the element at the provided index |
| Item[string] | public get |
Gets the element with the provided name |
| Name | Access Modifier | Summary |
|---|---|---|
| ContainsKey(string) | public |
Checks whether an item with the given name exists. |
| GetEnumerator() | public |
Returns an enumerator that iterates through the collection. |
| TryGetValue(string, T) | public |
Gets the item having the specified name. |
All items in the collection are sorted by their name and searched using case-insensitive comparison (OrdinalIgnoreCase).